home *** CD-ROM | disk | FTP | other *** search
- ;CHKDOS.ASM
-
- ;6.13.85
- ;4.27.85
- ; Check for version 2.x+ before proceeding.
-
- ;----------------------------------------------------------
- ; constants and messages
-
- dos_err_msg db 'Incorrect DOS version: need 2.0 or higher',cr,lf
- db eos
-
- ;----------------------------------------------------------
- ; main code
-
- CHKDOS proc near
- mov ah,30h ;get DOS version call
- int 21h
- cmp al,2 ;AH:minor, AL:major
- jae okchkdos
- mov dx,offset dos_err_msg
- mov ah,9h ;DOS print string
- int 21h
- mov ax,99 ;special errmsg return code
- stc ;set CY
- ret
- okchkdos:
- clc ;clear CY for OK return
- ret
- chkdos endp